What is New in ipywidgets 6.0?


In [1]:
from ipywidgets import VBox, jsdlink, IntSlider, HTML, Layout

s1 = IntSlider(description='Maximum', min=100, max=200, value=100)
s2 = IntSlider(description='Value', value=40)
jsdlink((s1, 'value'), (s2, 'max'))
VBox([s1, s2])



In [2]:
import numpy as np
from bqplot import pyplot as plt

n = 100
plt.figure(layout=Layout(width='800px', height='400px'))
plt.scatter(np.random.randn(n), np.random.randn(n))
plt.show()



In [ ]: